home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / syn.exe / 0 / RCDATA / TADDDIRDIALOG / TADDDIRDIALOG.txt
Text File  |  2004-02-29  |  2KB  |  105 lines

  1. object AddDirDialog: TAddDirDialog
  2.   Left = 582
  3.   Top = 213
  4.   BorderStyle = bsDialog
  5.   Caption = 'Add Dirrectory'
  6.   ClientHeight = 126
  7.   ClientWidth = 376
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Shell Dlg'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poOwnerFormCenter
  16.   OnClose = FormClose
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 8
  23.     Width = 45
  24.     Height = 13
  25.     Caption = '&Directory:'
  26.     FocusControl = txtDir
  27.   end
  28.   object Label2: TLabel
  29.     Left = 8
  30.     Top = 48
  31.     Width = 203
  32.     Height = 13
  33.     Caption = '&File Mask (separated with a Semicolon ";"):'
  34.     FocusControl = cboMask
  35.   end
  36.   object txtDir: TEdit
  37.     Left = 8
  38.     Top = 24
  39.     Width = 337
  40.     Height = 21
  41.     TabOrder = 0
  42.     OnChange = txtDirChange
  43.   end
  44.   object chkRecurse: TCheckBox
  45.     Left = 8
  46.     Top = 96
  47.     Width = 145
  48.     Height = 17
  49.     Caption = '&Recurse subdirectories'
  50.     TabOrder = 3
  51.   end
  52.   object btnCancel: TCorelButton
  53.     Left = 296
  54.     Top = 96
  55.     Width = 75
  56.     Height = 23
  57.     Cancel = True
  58.     Caption = 'Cancel'
  59.     ModalResult = 2
  60.     TabOrder = 4
  61.   end
  62.   object btnOK: TCorelButton
  63.     Left = 216
  64.     Top = 96
  65.     Width = 75
  66.     Height = 23
  67.     Caption = 'OK'
  68.     Default = True
  69.     Enabled = False
  70.     ModalResult = 1
  71.     TabOrder = 5
  72.     OnClick = btnOKClick
  73.   end
  74.   object cboMask: TComboBox
  75.     Left = 8
  76.     Top = 64
  77.     Width = 361
  78.     Height = 21
  79.     ItemHeight = 13
  80.     TabOrder = 2
  81.     Items.Strings = (
  82.       '*.*'
  83.       '*.htm;*.html'
  84.       '*.pas;*.dpr'
  85.       '*.cpp;*.c;*.hpp;*.h')
  86.   end
  87.   object btnBrowse: TCorelButton
  88.     Left = 352
  89.     Top = 24
  90.     Width = 17
  91.     Height = 21
  92.     Hint = 'Browse'
  93.     Caption = '...'
  94.     ParentShowHint = False
  95.     ShowHint = True
  96.     TabOrder = 1
  97.     OnClick = btnBrowseClick
  98.   end
  99.   object BrowseForFolder: TBrowseForFolder
  100.     Options = [boCenter]
  101.     Left = 156
  102.     Top = 96
  103.   end
  104. end
  105.